home *** CD-ROM | disk | FTP | other *** search
/ 3D Games - Real-time Rend…ng & Software Technology / 3D Games - Real-time Rendering & Software Technology.iso / flysdk / util / flyPlugin / Chooser.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-29  |  1.0 KB  |  35 lines

  1. #if !defined(AFX_CHOOSER_H__40D36E32_7D66_11D2_9263_000021799871__INCLUDED_)
  2. #define AFX_CHOOSER_H__40D36E32_7D66_11D2_9263_000021799871__INCLUDED_
  3.  
  4. // chooser.h : declaration of the CDialogChooser class
  5. //             This class keeps track of what dialogs to pop up when.
  6.  
  7. #define LAST_DLG 3
  8. #define FIRST_CUSTOM_STEP 1
  9. #define LAST_CUSTOM_STEP 3
  10. #define MAX_CLASSES 64
  11. #define MAX_PARAM 128
  12.  
  13. class CDialogChooser
  14. {
  15. public:
  16.     CDialogChooser();
  17.     ~CDialogChooser();
  18.  
  19.     // All calls by mfcapwz.dll to CFlypluginAppWiz::Next
  20.     //  & CFlypluginAppWiz::Back are delegated to these member
  21.     //  functions, which keep track of what dialog is up
  22.     //  now, and what to pop up next.
  23.     CAppWizStepDlg* Next(CAppWizStepDlg* pDlg);
  24.     CAppWizStepDlg* Back(CAppWizStepDlg* pDlg);
  25.  
  26.     int m_nCurrDlg;
  27.     CAppWizStepDlg* m_pDlgs[LAST_DLG + 1];
  28. };
  29.  
  30.  
  31. //{{AFX_INSERT_LOCATION}}
  32. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  33.  
  34. #endif // !defined(AFX_CHOOSER_H__40D36E32_7D66_11D2_9263_000021799871__INCLUDED_)
  35.